home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / emslb221.zip / STACK.ASM < prev    next >
Assembly Source File  |  1991-09-22  |  2KB  |  65 lines

  1. ;***************************************************************************
  2. ;   STACK.ASM                                                              *
  3. ;   MODULE:  EMSLIB                                                        *
  4. ;   OS:      MS-DOS                                                        *
  5. ;   VERSION: 1.0                                                           *
  6. ;   DATE:    9/22/91                                                       *
  7. ;                                                                          *
  8. ;   Copyright (c) 1991 James W. Birdsall. All Rights Reserved.             *
  9. ;                                                                          *
  10. ;   Compiles under Turbo Assembler 2.5.                                    *
  11. ;                                                                          *
  12. ;   This file is needed when compiling the example program (EMSTEST) in    *
  13. ;   tiny model with Borland compilers. A stack is not provided by default  *
  14. ;   and TLINK does not have the ability to add one at link time. Including *
  15. ;   this module in the link fixes that. This module is not needed when     *
  16. ;   compiling under MSC, since Microsoft's linker can provide a stack at   *
  17. ;   link time.                                                             *
  18. ;                                                                          *
  19. ;**************************************************************************/
  20.  
  21. ;*
  22. ;* model
  23. ;*
  24.  
  25. .MODEL small
  26.  
  27.  
  28. ;*
  29. ;* includes
  30. ;*
  31.  
  32. ;*
  33. ;* local EQUs
  34. ;*
  35.  
  36. ;*
  37. ;* misc: copyright strings, version macros, etc.
  38. ;*
  39.  
  40. ;*
  41. ;* structure definitions
  42. ;*
  43.  
  44. ;*
  45. ;* OTHER SEGMENTS
  46. ;*
  47.  
  48. .STACK 2048
  49.  
  50.  
  51. ;*
  52. ;* DATA SEGMENT - global variables
  53. ;*
  54.  
  55. ;*
  56. ;* DATA SEGMENT - static globals
  57. ;*
  58.  
  59. ;*
  60. ;* CODE SEGMENT - functions
  61. ;*
  62.  
  63.  
  64. END
  65.